home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 20 code / NetWare Development / NLM Client Example / NLMClientApp.h < prev    next >
Encoding:
Text File  |  1994-10-14  |  714 b   |  25 lines  |  [TEXT/MMCC]

  1. // ===========================================================================
  2. //    NLMClientApp.h                    
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LApplication.h>
  8. #include "LServerChooser.h"
  9. #include "LServerActions.h"
  10.  
  11. class    NLMClientApp : public LApplication {
  12. public:
  13.                         NLMClientApp();
  14.     virtual             ~NLMClientApp();
  15.     
  16.     virtual Boolean        ObeyCommand(CommandT inCommand, void *ioParam = nil);
  17.     virtual void        FindCommandStatus(CommandT inCommand,
  18.                             Boolean &outEnabled, Boolean &outUsesMark,
  19.                             Char16 &outMark, Str255 outName);
  20.     virtual void         DoServerChooser();
  21.  
  22. protected:
  23.     LServerChooser    *mServerChooser;
  24.     LServerActions    *mServerActions;
  25. };